DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImageCollection Class / Add Method / Add(IEnumerable<DicomImage>) Method

The DicomImageCollection to be added to the collection







In This Topic
    Add(IEnumerable<DicomImage>) Method
    In This Topic
    Syntax
    'Declaration
     
    
    Public Overloads Sub Add( _
       ByVal value As System.Collections.Generic.IEnumerable(Of DicomImage) _
    ) 
    'Usage
     
    
    Dim instance As DicomImageCollection
    Dim value As System.Collections.Generic.IEnumerable(Of DicomImage)
     
    instance.Add(value)
    public void Add( 
       System.Collections.Generic.IEnumerable<DicomImage> value
    )
    public procedure Add( 
        value: System.Collections.Generic.IEnumerable
    ); 
    public function Add( 
       value : System.Collections.Generic.IEnumerable
    );
    public: void Add( 
       System.Collections.Generic.IEnumerable<DicomImage*>* value
    ) 
    public:
    void Add( 
       System.Collections.Generic.IEnumerable<DicomImage^>^ value
    ) 

    Parameters

    value

    The DicomImageCollection to be added to the collection

    Remarks
    Adds a DicomImageCollection to the end of another DicomImageCollection
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also